warn

public static void warn(String message)

Logs a WARNING message.

Parameters

message

the message to log


public static void warn(String message, Array<Object> arguments)

Logs a WARNING message with the given arguments.

Parameters

message

the message to log

arguments

the array of arguments to the message


public static void warn(String message, Throwable exception)

Logs a WARNING message with the given exception.

Parameters

message

the message to log

exception

the Throwable associated with the log message


public static void warn(Throwable exception, Supplier<String> msgSupplier)

Logs a lazily constructed WARNING message with the given exception.

Parameters

exception

the Throwable associated with the log message

msgSupplier

a function, which when called, produces the desired log message